.alert-users-block {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;

  width: 312px;
  height: 64px;

 
  display: flex;
  flex-direction: column-reverse;
}

.alert-users-block strong {
  font-weight: bold !important;

}

.alert-user {
  width: 300px; /* Adjust as needed */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  display: none;
  position: absolute;
  border-radius: 10px;
  padding: 10px;
  align-items: center;
  right: 0;
  opacity: 0;
  transition: opacity 1s ease; /* Add smooth transition for opacity */

}

.alert-user p {
  font-size: 15px;
  margin: 0;
  color: black;
}

.alert-user-image {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-right: 10px;
}

.alert-user.inactive {
  animation: hideAlert 0.5s ease forwards;
}

@keyframes hideAlert {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}


@keyframes slideIn {
  from {
      right: -320px;
  }
  to {
      right: 20px;
  }
}

.alert-user.active {
  opacity: 1;
  display: flex !important;
  animation: slideIn 1s ease-in-out forwards;

}

.alert-user.inactive {
  animation: hideAlert 3s ease forwards;

}


